-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update except usings #354
update except usings #354
Conversation
WalkthroughThis update focuses on enhancing and refining the Changes
Sequence DiagramssequenceDiagram
participant User
participant NatashaSlimMethodBuilder
participant AssemblyCSharpBuilder
participant NatashaUsingCache
User->>NatashaSlimMethodBuilder: Call WithSmartBuilder()
NatashaSlimMethodBuilder->>AssemblyCSharpBuilder: Configure builder
User->>NatashaSlimMethodBuilder: Call WithoutUsings()
NatashaSlimMethodBuilder->>AssemblyCSharpBuilder: AppendExceptUsings()
User->>AssemblyCSharpBuilder: Add script with UsingLoadBehavior
AssemblyCSharpBuilder->>AssemblyCSharpBuilder: Check ExceptUsings
AssemblyCSharpBuilder->>NatashaUsingCache: Update cache logic
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
@coderabbitai review |
Actions performedReview triggered.
|
未检测到合适的 ISSUE 推荐给您。感谢您的反馈!
|
UT Test - Ubuntu1 tests 1 ✅ 0s ⏱️ Results for commit 9c465d9. |
UT Test - Windows1 tests 1 ✅ 0s ⏱️ Results for commit 9c465d9. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (6)
- src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.MethodCreator/NatashaSlimMethodBuilder.cs (4 hunks)
- src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.MethodCreator/StringExtension.cs (1 hunks)
- src/Natasha.CSharp/Natasha.CSharp.Compiler/CompileUnit/AssemblyCSharpBuilder.Syntax.cs (1 hunks)
- src/Natasha.CSharp/Natasha.CSharp.Compiler/CompileUnit/AssemblyCSharpBuilder.Usings.cs (1 hunks)
- src/Natasha.CSharp/Natasha.CSharp.Compiler/Component/Cache/NatashaUsingCache.cs (2 hunks)
- src/Natasha.CSharp/Natasha.CSharp.Compiler/Extension/NatashaStringExtension.cs (1 hunks)
Additional comments not posted (15)
src/Natasha.CSharp/Natasha.CSharp.Compiler/CompileUnit/AssemblyCSharpBuilder.Usings.cs (1)
17-24
: LGTM!The method
AppendExceptUsings
correctly adds the providedusings
to theExceptUsings
set ifusings
is not null and not empty.src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.MethodCreator/StringExtension.cs (2)
30-35
: LGTM!The method
WithSmartMethodBuilder
correctly creates aNatashaSlimMethodBuilder
instance and configures it withWithSmartBuilder
.
37-43
: LGTM!The method
WithoutUsings
correctly creates aNatashaSlimMethodBuilder
instance, configures it withWithSmartBuilder
, and then callsWithoutUsings
with the providedusings
.src/Natasha.CSharp/Natasha.CSharp.Compiler/Extension/NatashaStringExtension.cs (1)
48-49
: LGTM!The method
WithAllUsingCode
correctly usesWithExceptUsing
fromNatashaLoadContext.DefaultContext.UsingRecorder
to exclude specified usings.src/Natasha.CSharp/Extension/Natasha.CSharp.Extension.MethodCreator/NatashaSlimMethodBuilder.cs (7)
10-10
: LGTM!The private field
_exceptUsings
is correctly declared as a nullableHashSet<string>
.
11-11
: LGTM!The private field
_privateObjects
is correctly declared as a nullableobject[]
.
22-23
: LGTM!The method
WithPrivateAccess
correctly uses_privateObjects
instead ofPrivateObjects
.
43-48
: LGTM!The method
WithSmartBuilder
correctly configures the builder withUseRandomLoadContext
andUseSmartMode
.
55-59
: LGTM!The method
WithoutUsings
correctly callsAppendExceptUsings
on the builder with the providedusings
.
Line range hint
93-97
:
LGTM!The method
WithMetadata
correctly uses_privateObjects
instead ofPrivateObjects
.
109-112
: LGTM!The method
ToDelegate
correctly uses_privateObjects
for private access handling.src/Natasha.CSharp/Natasha.CSharp.Compiler/Component/Cache/NatashaUsingCache.cs (2)
Line range hint
202-216
:
LGTM! Verify correctness ofWithExceptUsing(HashSet<string> exceptUsings)
.The method implementation looks correct. Ensure that it works as expected in various scenarios.
216-218
: LGTM! Verify performance ofWithExceptUsing(IEnumerable<string> exceptUsings)
.The method implementation looks correct. Ensure that the conversion to
HashSet<string>
does not introduce performance issues.src/Natasha.CSharp/Natasha.CSharp.Compiler/CompileUnit/AssemblyCSharpBuilder.Syntax.cs (2)
223-303
: LGTM! Verify correctness ofAdd(string script, UsingLoadBehavior usingLoadBehavior, Encoding? encoding = null, string filePath = "")
.The method implementation looks correct. Ensure that it handles all
UsingLoadBehavior
cases as expected.
310-379
: LGTM! Verify correctness ofAdd(CompilationUnitSyntax root, UsingLoadBehavior usingLoadBehavior, Encoding? encoding = null, string filePath = "")
.The method implementation looks correct. Ensure that it handles all
UsingLoadBehavior
cases as expected.
/// </summary> | ||
public sealed partial class AssemblyCSharpBuilder | ||
{ | ||
public readonly HashSet<string> ExceptUsings = []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the initialization syntax for ExceptUsings
.
The initialization syntax for an empty HashSet<string>
is incorrect. It should be initialized using new HashSet<string>()
.
- public readonly HashSet<string> ExceptUsings = [];
+ public readonly HashSet<string> ExceptUsings = new HashSet<string>();
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
public readonly HashSet<string> ExceptUsings = []; | |
public readonly HashSet<string> ExceptUsings = new HashSet<string>(); |
Summary by CodeRabbit
New Features
WithSmartBuilder
andWithoutUsings
methods for enhanced method configuration.WithSmartMethodBuilder
andWithoutUsings
methods to streamline method builder creation.Improvements
using
directives with the newAppendExceptUsings
method.Refactor
Bug Fixes
WithExceptUsing
to ensure proper usage exclusion in caches.